home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #11 / Software USA Volume 4.11.iso / mac / LifeStyles / WS Quest / QES < prev    next >
Encoding:
Text File  |  1995-11-26  |  2.6 KB  |  94 lines  |  [ttro/ttxt]

  1. Popular Technical Analysis Indicators
  2. Expressed in Quest Equation Syntax (QES)
  3.  
  4. This is a list of some common technical analysis indicators as converted to QES.
  5. Several indicators such as CCI, RSI, and ROC are not included here as there are built-in QES functions for them.
  6. “A:” and “B:” indicate equation pairs which are entered on separate lines to produce two traces.
  7.  
  8.  
  9. Band Width (TASC)
  10.     (mas(C,20)+2*std(C,20))-(mas(C,20)-2*std(C,20))/mas(C,20)
  11.  
  12. Binary Wave - (MACD + MvgAvg + ROC + Stochastic)
  13.       if(osc(C,12,26)-mae(osc(C,12,26),9),1,-1)
  14.     + if(C-mae(C,20),1,-1)
  15.     + if(roc(C,12),1,-1)
  16.     + if(stochk(5)-50,1,-1)
  17.  
  18. Bollinger Bands
  19. A:    mas(C,20)+2*std(C,20) {Upper}
  20. B:    mas(C,20)-2*std(C,20) {Lower}
  21.  
  22. Bull/Bear Power - Eldarray
  23. A:    H-mae(C,13) {Bull Power}
  24. B:    L-mae(C,13) {Bear Power}
  25.  
  26. Custom A/D Oscillator
  27.     sum(if(C-C[-2],1,-1,0))
  28.  
  29. KST - Martin Pring
  30.     mas(rocp(c,10),10) +2*mas(rocp(c,15),10)+3*mas(rocp(c,20),10) +4*mas(rocp(c,30),10)
  31.  
  32. MA & MACD Binary Waves
  33. A:    if(C-mae(C,20),1,-1)
  34. B:    if(osc(C,8,17)-mae(osc(C,8,17),9),1,-1)
  35.  
  36. MACD - Moving Average Convergence/Divergence
  37. A:    osc(C,12,26) {MACD}
  38. B:    mae(osc(C,12,26),9) {trigger}
  39.  
  40. Median Price
  41.     (max(H,10)-C)-(C-min(L,10))/(max(H,10)-min(L,10))
  42.  
  43. Momentum
  44.     roc(mae(C,10),10)
  45.  
  46. Money Flow
  47. A:    V*(2*C-L-H)/(H-L)
  48. B:    sum(V*(2*C-L-H)/(H-L),21)/sum(V,21) {Chaikin}
  49.  
  50. Morris RSI with Volume
  51.     100-100/(1+mas(if(roc(C,1),0,roc(C,1)*V),14) / mas(if(-roc(C,1),0,-roc(C,1)*V),14))
  52.  
  53. Number of Std. Devs of Volume
  54.     (V-mas(V,20))/(1000*std(V/1000,20))
  55.  
  56. OBV - On Balance Volume (1000s)
  57.     sum(if(CH, V/1000, -V/1000))
  58.  
  59. RVI with Simple Moving Average (TASC)
  60.     100*mas(if(CH,std(C,10),0,0),14)/(mas(if(CH,std(C,10),0),14)+mas(if(-CH,std(C,10),0),14))
  61.  
  62. PV Rank Combine (TASC)
  63.     if(CH,if(V-V[-1],1,2),if(V-V[-1],4,3))
  64.  
  65. RSI Binary Wave (using 30/70 crossover)
  66.     if(rsi(C,10)-30,if(30-shift(rsi(C,10),-1),1, if(70-rsi(C,10),if(shift(rsi(C,10),-1)-70,-1,0),0)),0)
  67.  
  68. RWI for Today’s High and Low
  69. A: (H-L[-16])/mas(H-L,16)*4 {High}
  70. B:    (H[-16]-L)/mas(H-L,16)*4 {Low}
  71.  
  72. Slope of Linear Regression Line
  73.     (200*sum(cum(1)*C,200) - sum(cum(1),200)*sum(C,200)) / (200*sum(sqr(cum(1)),200) - sqr(sum(cum(1),200)))
  74.  
  75. Smoothed Tick Momentum Line (TASC)
  76.     mae(roc(sum(if(C-shift(mae(C,10),-1),1,-1)),5),5)
  77.  
  78. Stochastics
  79. A:    stochk(14) {%K}
  80. B:    stochd(14) {%D}
  81.  
  82. Summation Noise Indicator - Adam White
  83.     (sum(abs(CH),14)-sum(abs(mas(C,10)-shift(mas(C,10),-1)),14))/sum(abs(CH),14)
  84.  
  85. Trendscore - Tushar Chande (TASC)
  86.       if(C-C[-11],1,-1) + if(C-C[-12],1,-1)
  87.     + if(C-C[-13],1,-1) + if(C-C[-14],1,-1)
  88.     + if(C-C[-15],1,-1) + if(C-C[-16],1,-1)
  89.     + if(C-C[-17],1,-1) + if(C-C[-18],1,-1)
  90.     + if(C-C[-19],1,-1) + if(C-C[-20],1,-1)
  91.  
  92. Volume Binary Wave
  93.     if(V-shift(mae(V,20),1),1,-1,0)
  94.